testing.common.chatty (field)
66 uses
testing (current package)
benchmark.go#L249: fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), b.name, b.output)
benchmark.go#L262: if b.chatty != nil && (len(b.output) > 0 || finished) {
benchmark.go#L264: fmt.Fprintf(b.w, "%s--- %s: %s\n%s", b.chatty.prefix(), tag, b.name, b.output)
benchmark.go#L728: main.chatty = newChattyPrinter(main.w)
benchmark.go#L742: if b.chatty == nil {
benchmark.go#L752: chatty: b.chatty,
benchmark.go#L766: fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
benchmark.go#L770: if b.chatty != nil {
benchmark.go#L781: fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
benchmark.go#L786: if b.chatty != nil && b.chatty.json {
benchmark.go#L787: b.chatty.Updatef("", "=== NAME %s\n", "")
benchmark.go#L827: chatty: b.chatty,
benchmark.go#L842: if b.chatty != nil {
benchmark.go#L855: if b.chatty.json {
benchmark.go#L856: b.chatty.Updatef(benchName, "=== RUN %s\n", benchName)
fuzz.go#L312: chatty: f.chatty,
fuzz.go#L324: if t.chatty != nil {
fuzz.go#L325: t.chatty.Updatef(t.name, "=== RUN %s\n", t.name)
fuzz.go#L344: if t.chatty != nil && t.chatty.json {
fuzz.go#L345: t.chatty.Updatef(t.parent.name, "=== NAME %s\n", t.parent.name)
fuzz.go#L422: } else if f.chatty != nil {
fuzz.go#L500: root.chatty = newChattyPrinter(root.w)
fuzz.go#L525: chatty: root.chatty,
fuzz.go#L534: if f.chatty != nil {
fuzz.go#L535: f.chatty.Updatef(f.name, "=== RUN %s\n", f.name)
fuzz.go#L539: if f.chatty != nil && f.chatty.json {
fuzz.go#L540: f.chatty.Updatef(f.parent.name, "=== NAME %s\n", f.parent.name)
fuzz.go#L580: root.chatty = newChattyPrinter(root.w)
fuzz.go#L611: chatty: root.chatty,
fuzz.go#L620: if f.chatty != nil {
fuzz.go#L621: f.chatty.Updatef(f.name, "=== RUN %s\n", f.name)
fuzz.go#L625: if f.chatty != nil {
fuzz.go#L626: f.chatty.Updatef(f.parent.name, "=== NAME %s\n", f.parent.name)
testing.go#L649: chatty *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.
testing.go#L824: if c.chatty != nil && (p.w == c.chatty.w || c.chatty.json) {
testing.go#L838: c.chatty.Updatef(testName, format, args...)
testing.go#L842: fmt.Fprintf(p.w, c.chatty.prefix()+format, args...)
testing.go#L1159: if !o.c.done && (o.c.chatty != nil) {
testing.go#L1165: o.c.chatty.Printf(o.c.name, "%s%s", indent, b)
testing.go#L1518: if c.chatty == nil {
testing.go#L1521: c.chatty.Updatef(c.name, "=== ATTR %s %v %v\n", c.name, key, value)
testing.go#L1702: if t.chatty != nil {
testing.go#L1703: t.chatty.Updatef(t.name, "=== PAUSE %s\n", t.name)
testing.go#L1712: if t.chatty != nil {
testing.go#L1713: t.chatty.Updatef(t.name, "=== CONT %s\n", t.name)
testing.go#L1978: chatty: t.chatty,
testing.go#L1987: if t.chatty != nil {
testing.go#L1988: t.chatty.Updatef(t.name, "=== RUN %s\n", t.name)
testing.go#L2011: if t.chatty != nil && t.chatty.json {
testing.go#L2012: t.chatty.Updatef(t.parent.name, "=== NAME %s\n", t.parent.name)
testing.go#L2038: chatty: t.chatty,
testing.go#L2394: } else if t.chatty != nil {
testing.go#L2473: t.chatty = newChattyPrinter(t.w)